home *** CD-ROM | disk | FTP | other *** search
/ Clickx 96 / Clickx 96.iso / software / tools / tool / xbmc-10.1.exe / addons / xbmc.python / script.xsd < prev   
Encoding:
Extensible Markup Language  |  2011-03-08  |  671 b   |  18 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE schema PUBLIC "-//W3C//DTD XMLSCHEMA 200102//EN" "http://www.w3.org/2001/XMLSchema.dtd">
  3. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  4.     <xs:element name="extension">
  5.         <xs:complexType>
  6.             <xs:attribute name="point" type="xs:string" use="required"/>
  7.             <xs:attribute name="id" type="simpleIdentifier"/>
  8.             <xs:attribute name="name" type="xs:string"/>
  9.             <xs:attribute name="library" type="xs:string"/>
  10.         </xs:complexType>
  11.     </xs:element>
  12.     <xs:simpleType name="simpleIdentifier">
  13.         <xs:restriction base="xs:string">
  14.             <xs:pattern value="[^.]+"/>
  15.         </xs:restriction>
  16.     </xs:simpleType>
  17. </xs:schema>
  18.